@import url(https://db.onlinewebfonts.com/c/4b5ae315f5df148f0ab479a7cedc9832?family=ISOCPEUR);

body {
    background-color: #f9f9f9;
    /*background-image: url("");*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    background-size: 100%;
}


.Head {
    margin: 0px auto; /* выравнивание по центру*/
    background: #404040; /* #c0cfe2 цвет фона меню*/
    border-bottom: 5px solid #555;
    position:fixed;
    top: 0px;
    left: 0;
    height: 80px;
    width: 100%;
}

/* меню */
.lang {
    cursor: pointer;
    width: 150px;
    font-size: 12px;
    font-weight: bold;
    top: 30px;
    position: fixed;
    font-family: 'Arial'; /* шрифт */
    color: grey;
}
    .lang td:hover {
        color: yellow;
    } 

.MainMenu {
    margin: 0px auto;  /*выравнивание по центру всей батареи меню*/
    background: #404040; /* #c0cfe2 цвет фона меню*/
    }


/* пункт меню - графическая пиктограмма */
    .MainMenu img.logoImg {
        display: block;
        margin: auto;
        width: 163px;
        height:71px;
    }

        /* пункт меню - графическая пиктограмма */
        .MainMenu img {
            display: block;
            margin: auto;
            width: 35px;
            height: 35px;
        }

        /* пункт меню - стили текста и фона */
            .MainMenu a {
                color: orange;/*#231f20 цвет текста */
                text-transform: uppercase;
                text-decoration: none; /* нет подчеркивания */
                font-family: 'ISOCPEUR'; /* шрифт */
                font-weight: bold;
                font-size: 16px;
                text-align: center; /* выравнивае текста*/
                display: inline-block; /* способ отображения - задан такой, что бы тэг A, как бы растянулся по всей ячейке td*/
                line-height: 38px; /* высота */
                width: 200px; /* ширина */
                border: 0px solid white; /* стиль окантовки */
                background:#404040 ; /* #c0cfe2 цвет фона */
            }
        /* пункт меню - подсветка при наведении мышки*/
                .MainMenu a:hover {
                    background: #202A34;
                    color: whitesmoke;
                    transition: 0.5s linear;
                   
                }
    .MainMenu td:hover {
        border: solid 0px #696969;
    } 
